home *** CD-ROM | disk | FTP | other *** search
- unit Og32reg;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Controls, Forms, DsgnIntf;
-
- procedure Register;
-
- implementation
-
- uses MLRTypes, Optigrss, StepMain, BkMain, FwdMain, OgMain, OgTools;
-
- procedure Register;
- begin
- RegisterComponents('AAS Statistics', [TOptimizeMLR]);
- RegisterComponents('AAS Statistics', [TBackElimMLR]);
- RegisterComponents('AAS Statistics', [TFwdSelectMLR]);
- RegisterComponents('AAS Statistics', [TStepWiseMLR]);
- RegisterPropertyEditor(TypeInfo(TAbout),TOptigress,'',TOptigressAboutProperty);
- RegisterPropertyEditor(TypeInfo(string),TOptigress,'Dataset',TDatasetProperty);
- RegisterPropertyEditor(TypeInfo(string),TStepWiseMLR,'FPercent',TFTableProperty);
- RegisterOgUserInfo('','')
- end;
-
- end.
-